3.457 \(\int \sqrt {9-4 x^2} \, dx\)

Optimal. Leaf size=27 \[ \frac {1}{2} \sqrt {9-4 x^2} x+\frac {9}{4} \sin ^{-1}\left (\frac {2 x}{3}\right ) \]

[Out]

9/4*arcsin(2/3*x)+1/2*x*(-4*x^2+9)^(1/2)

________________________________________________________________________________________

Rubi [A]  time = 0.00, antiderivative size = 27, normalized size of antiderivative = 1.00, number of steps used = 2, number of rules used = 2, integrand size = 11, \(\frac {\text {number of rules}}{\text {integrand size}}\) = 0.182, Rules used = {195, 216} \[ \frac {1}{2} \sqrt {9-4 x^2} x+\frac {9}{4} \sin ^{-1}\left (\frac {2 x}{3}\right ) \]

Antiderivative was successfully verified.

[In]

Int[Sqrt[9 - 4*x^2],x]

[Out]

(x*Sqrt[9 - 4*x^2])/2 + (9*ArcSin[(2*x)/3])/4

Rule 195

Int[((a_) + (b_.)*(x_)^(n_))^(p_), x_Symbol] :> Simp[(x*(a + b*x^n)^p)/(n*p + 1), x] + Dist[(a*n*p)/(n*p + 1),
 Int[(a + b*x^n)^(p - 1), x], x] /; FreeQ[{a, b}, x] && IGtQ[n, 0] && GtQ[p, 0] && (IntegerQ[2*p] || (EqQ[n, 2
] && IntegerQ[4*p]) || (EqQ[n, 2] && IntegerQ[3*p]) || LtQ[Denominator[p + 1/n], Denominator[p]])

Rule 216

Int[1/Sqrt[(a_) + (b_.)*(x_)^2], x_Symbol] :> Simp[ArcSin[(Rt[-b, 2]*x)/Sqrt[a]]/Rt[-b, 2], x] /; FreeQ[{a, b}
, x] && GtQ[a, 0] && NegQ[b]

Rubi steps

\begin {align*} \int \sqrt {9-4 x^2} \, dx &=\frac {1}{2} x \sqrt {9-4 x^2}+\frac {9}{2} \int \frac {1}{\sqrt {9-4 x^2}} \, dx\\ &=\frac {1}{2} x \sqrt {9-4 x^2}+\frac {9}{4} \sin ^{-1}\left (\frac {2 x}{3}\right )\\ \end {align*}

________________________________________________________________________________________

Mathematica [A]  time = 0.01, size = 27, normalized size = 1.00 \[ \frac {1}{2} \sqrt {9-4 x^2} x+\frac {9}{4} \sin ^{-1}\left (\frac {2 x}{3}\right ) \]

Antiderivative was successfully verified.

[In]

Integrate[Sqrt[9 - 4*x^2],x]

[Out]

(x*Sqrt[9 - 4*x^2])/2 + (9*ArcSin[(2*x)/3])/4

________________________________________________________________________________________

fricas [A]  time = 1.47, size = 32, normalized size = 1.19 \[ \frac {1}{2} \, \sqrt {-4 \, x^{2} + 9} x - \frac {9}{2} \, \arctan \left (\frac {\sqrt {-4 \, x^{2} + 9} - 3}{2 \, x}\right ) \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

integrate((-4*x^2+9)^(1/2),x, algorithm="fricas")

[Out]

1/2*sqrt(-4*x^2 + 9)*x - 9/2*arctan(1/2*(sqrt(-4*x^2 + 9) - 3)/x)

________________________________________________________________________________________

giac [A]  time = 1.00, size = 19, normalized size = 0.70 \[ \frac {1}{2} \, \sqrt {-4 \, x^{2} + 9} x + \frac {9}{4} \, \arcsin \left (\frac {2}{3} \, x\right ) \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

integrate((-4*x^2+9)^(1/2),x, algorithm="giac")

[Out]

1/2*sqrt(-4*x^2 + 9)*x + 9/4*arcsin(2/3*x)

________________________________________________________________________________________

maple [A]  time = 0.00, size = 20, normalized size = 0.74 \[ \frac {\sqrt {-4 x^{2}+9}\, x}{2}+\frac {9 \arcsin \left (\frac {2 x}{3}\right )}{4} \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

int((-4*x^2+9)^(1/2),x)

[Out]

9/4*arcsin(2/3*x)+1/2*(-4*x^2+9)^(1/2)*x

________________________________________________________________________________________

maxima [A]  time = 2.94, size = 19, normalized size = 0.70 \[ \frac {1}{2} \, \sqrt {-4 \, x^{2} + 9} x + \frac {9}{4} \, \arcsin \left (\frac {2}{3} \, x\right ) \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

integrate((-4*x^2+9)^(1/2),x, algorithm="maxima")

[Out]

1/2*sqrt(-4*x^2 + 9)*x + 9/4*arcsin(2/3*x)

________________________________________________________________________________________

mupad [B]  time = 0.02, size = 18, normalized size = 0.67 \[ \frac {9\,\mathrm {asin}\left (\frac {2\,x}{3}\right )}{4}+x\,\sqrt {\frac {9}{4}-x^2} \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

int((9 - 4*x^2)^(1/2),x)

[Out]

(9*asin((2*x)/3))/4 + x*(9/4 - x^2)^(1/2)

________________________________________________________________________________________

sympy [A]  time = 0.22, size = 22, normalized size = 0.81 \[ \frac {x \sqrt {9 - 4 x^{2}}}{2} + \frac {9 \operatorname {asin}{\left (\frac {2 x}{3} \right )}}{4} \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

integrate((-4*x**2+9)**(1/2),x)

[Out]

x*sqrt(9 - 4*x**2)/2 + 9*asin(2*x/3)/4

________________________________________________________________________________________